RGBa Colors

   

arrow_back
arrow_forward
arrow_upward
SPR
REF
  RGBA Color Picker    RGB and RGBA Colors (w3schools.com)
Value Description  rgba(red, green, blue, alpha)
red Defines the intensity of red as an integer between 0 and 255, or as a percentage value between 0% and 100%
green Defines the intensity of green as an integer between 0 and 255, or as a percentage value between 0% and 100%
blue Defines the intensity of blue as an integer between 0 and 255, or as a percentage value between 0% and 100%
alpha Defines the opacity as a number between 0.0 (fully transparent) and 1.0 (fully opaque)

css Rule Background Hover
.paint_1{background-color:rgba(255,0,0,0.3);} Bgnd Paint 1 brush_1
.paint_2 {background-color:rgba(0,255,0,0.3);} Bgnd Paint 2 brush_2
.paint_3 {background-color:rgba(0,0,255,0.3);} Bgnd Paint 3 brush_3
.paint_4 {background-color:rgba(192,192,192,0.3);} Bgnd Paint 4 brush_4
.paint_5 {background-color:rgba(255,255,0,0.3);} Bgnd Paint 5 brush_5
.paint_6 {background-color:rgba(255,0,255,0.3);} Bgnd Paint 6 brush_6
.paint_7 {background-color:rgba(50,115,220);} Bgnd Paint 7 brush_7
.paint_8 {background-color: rgba(50, 115, 220, 0.3);} Bgnd Paint 8 brush_8
.paint_9 {background-color: rgba(230, 230, 154, 1);} Bgnd Paint 9 brush_9
     
css Rule Background Hover